home *** CD-ROM | disk | FTP | other *** search
- // Link.cpp: implementation of the Link class.
- //
- //////////////////////////////////////////////////////////////////////
-
- #include "stdafx.h"
- #include "BLink.h"
- #include "Link.h"
-
- #ifdef _DEBUG
- #undef THIS_FILE
- static char THIS_FILE[]=__FILE__;
- #define new DEBUG_NEW
- #endif
-
- //////////////////////////////////////////////////////////////////////
- // Construction/Destruction
- //////////////////////////////////////////////////////////////////////
-
- Link::Link()
- {
-
- }
-
- Link::~Link()
- {
-
- }
-
- Link::Link(int ID, void *pData, short size, BOOL InFlag)
- { m_LinkID = ID;
- m_pData = pData;
- m_DataSize = size;
- m_InFlag = InFlag;
- }
-